Welcome![Sign In][Sign Up]
Location:
Search - win32 sdk

Search list

[Other resourcemyread

Description: 文本文件和二进制文件的区别。用文本方式读写文件和以二进制方式读写文件的注意事项。C++对文件读写的支持,ofstream和ifstream的用法。Win32 SDK对文件读写的支持,CreateFile函数、WriteFile函数、ReadFile函数的使用;MFC对文件读写的支持,CFile类和CFileDialog的使用
Platform: | Size: 36915 | Author: 周游 | Hits:

[Other resourceMoveBox

Description: 为推箱子游戏代码,开发环境Win32 SDK平台,运用两类纹理贴图,生动形象,按ESC退出。
Platform: | Size: 120876 | Author: JinYao | Hits:

[OtherMFCtest12Code

Description: const char *与char * const的区别。C语言对文件读写的支持,FILE指针;文本文件和二进制文件的区别。用文本方式读写文件和以二进制方式读写文件的注意事项。C++对文件读写的支持,ofstream和ifstream的用法。Win32 SDK对文件读写的支持,CreateFile函数、WriteFile函数、ReadFile函数的使用;MFC对文件读写的支持,CFile类和CFileDialog的使用,文件过滤器的设置。win.ini文件和注册表的读写方式及相关知识点。
Platform: | Size: 39181 | Author: 陈嵩 | Hits:

[Windows DevelopMyMFC

Description: 用 Win32 SDK 实现与 MFC 类似的程序 用win32SDK实现了一个与MFC类似的程序,虽然不完美,但我想很适合MFC初学者学习之用,此程序对MFC的实现原理做了很好的描述。谢谢!
Platform: | Size: 8548 | Author: rock | Hits:

[Windows DevelopWindowsCoreProgrammingWithPASCAL

Description: Windows核心编程(PASCAL代码) ------------------------------------- 《Windows核心编程》 原书: Programming Applications for Microsoft Windows Fourth Edition 作者: Jeffrey Richter 译者: 王建华等 --------------------------------------- 书中有不少C++写的Win32 SDK小程序,闲暇时用Object Pascal写了一遍, 限于自身水平和时间精力等关系,可能存在错误,期待您能给予指正。 感谢风云剑客提供原书光盘,否则,只是打字可能就会把人累得半死!^.^
Platform: | Size: 425265 | Author: whua | Hits:

[GDI-Bitmapimagelist

Description: How to use 256 Color Bitmaps in ImageList (Win32 SDK solution)如何在ImageList中使用256色的位图(Win32 SDK的解决方案)(5KB)-How to use 256 Color Bitmaps in ImageList (Win32 SDK solution) ImageList how to use 256-color bitmap (Win32 SDK solutions) (5KB)
Platform: | Size: 4456 | Author: 小王 | Hits:

[Windows Develop最简单的SDK窗口程序

Description: 这是一个SDK程序。本程序跟踪显示鼠标的坐标位置,同时,若有鼠标操作,可在窗口标题栏中显示操作信息,要是在窗口客户区中进行双击,就会在双击位置点上显示位置信息。此外,客户中还有两个位图,当鼠标移动到位图上时,就会改变为自己定义的光标。该程序适合Win32编程初学者,内含大量的中文注释。-SDK This a process. This program tracking shows the coordinates of the mouse position, and if the mouse operation, the window title bar shows operating information, if the window area for customers double-click, double-click will be the point location shown on the location information. In addition, customers there are two bitmap, when the mouse movement on the plan in place, they will change their definition of the cursor. The program suitable for beginners Win32 programming, with a lot of Chinese Notes.
Platform: | Size: 5737 | Author: 郑浩 | Hits:

[Windows Developvc++多线程

Description:

多线程编程

  进程和线程都是操作系统的概念。进程是应用程序的执行实例,每个进程是由私有的虚拟地址空间、代码、数据和其它各种系统资源组成,进程在运行过程中创建的资源随着进程的终止而被销毁,所使用的系统资源在进程终止时被释放或关闭。
  线程是进程内部的一个执行单元。系统创建好进程后,实际上就启动执行了该进程的主执行线程,主执行线程以函数地址形式,比如说main或WinMain函数,将程序的启动点提供给Windows系统。主执行线程终止了,进程也就随之终止。
  每一个进程至少有一个主执行线程,它无需由用户去主动创建,是由系统自动创建的。用户根据需要在应用程序中创建其它线程,多个线程并发地运行于同一个进程中。一个进程中的所有线程都在该进程的虚拟地址空间中,共同使用这些虚拟地址空间、全局变量和系统资源,所以线程间的通讯非常方便,多线程技术的应用也较为广泛。
  多线程可以实现并行处理,避免了某项任务长时间占用CPU时间。要说明的一点是,目前大多数的计算机都是单处理器(CPU)的,为了运行所有这些线程,操作系统为每个独立线程安排一些CPU时间,操作系统以轮换方式向线程提供时间片,这就给人一种假象,好象这些线程都在同时运行。由此可见,如果两个非常活跃的线程为了抢夺对CPU的控制权,在线程切换时会消耗很多的CPU资源,反而会降低系统的性能。这一点在多线程编程时应该注意。
  Win32 SDK函数支持进行多线程的程序设计,并提供了操作系统原理中的各种同步、互斥和临界区等操作。Visual C++ 6.0中,使用MFC类库也实现了多线程的程序设计,使得多线程编程更加方便。


Platform: | Size: 55560 | Author: chenmh639 | Hits:

[Chess Poker games贪吃蛇

Description: win32 sdk 写的一个贪吃蛇代码比较爽
Platform: | Size: 18572 | Author: songhc1986 | Hits:

[Chess Poker gamescclinux

Description: 用SDL写的中国象棋程序,人工智能算法来源于陈成涛先生的mantisChess。 昨天中午在cosoft上偶然发现了陈成涛先生的中国象棋程序,Down下来以后发现只有Windows版,打开源代码,发现是用Win32 SDK写的(呵呵,以前学这东西可花了我不少时间,现在终于派上用场了),于是我决定把它移植到Linux下来,花了一个下午和一个早上终于搞定了。 不过程序退出的时候会出现一个错误,现在还没找到问题所在,而且程序的界面也比较难看,大家先凑合着用吧!等我以后有时间了再改。昨天已经被我们项目组长批了一顿了,说我上班时间不务正业。-SDL used to write Chinese chess procedures, artificial intelligence algorithms from Mr. Chen Cheng-tao mantisChess. Cosoft noon yesterday on the accidental discovery of Mr. Chen Cheng-tao of Chinese chess procedures, Down down after only a Windows version, open source code and discovered that it is written with Win32 SDK (Oh, before this study things I can spend a lot of time, now is a chance to use), so I decided transplant Linux down and spent an afternoon and a morning finally to get. But procedures from the time that there would be a mistake, we have not found the problem, but the interface procedures are ugly, we first used to improvise! So I will have more time to change. Yesterday, we had been awarded the project head of a meal, I said we ought to work.
Platform: | Size: 51200 | Author: 阿呆 | Hits:

[Windows DevelopKeyView1

Description: 一个win32下,用sdk编写的键盘操作代码-a win32, with sdk prepared by the keyboard operation code
Platform: | Size: 57344 | Author: 王敏 | Hits:

[Windows Developmouse111

Description: 这是一个SDK程序。本程序跟踪显示鼠标的坐标位置,同时,若有鼠标操作,可在窗口标题栏中显示操作信息,要是在窗口客户区中进行双击,就会在双击位置点上显示位置信息。此外,客户中还有两个位图,当鼠标移动到位图上时,就会改变为自己定义的光标。该程序适合Win32编程初学者,内含大量的中文注释。-This is a SDK procedure. This program tracking demonstrates the coordinates position of the mouse, at the same time, demonstrate the operation information in the window title block if the mouse has operation. if double-clicks in the window customer area ,can demonstrates the positional information of the double-click position. In addition, in the customer also has two units places charts, when the mouse moves arrives on the chart, can change the cursor which defines as oneself. This procedure suits the Win32 programming beginner, contains the massive Chinese annotation.
Platform: | Size: 10240 | Author: 梁志洪 | Hits:

[OpenGL programJvav三维动画演示系统

Description: 首先安装JRE,再安装java3d包(Java 3D包的文件名为java3d-1_3_1-windows-i586-opengl-sdk.exe,可以到百度,GOOGLE和北大天网上去搜索这个文件,就会有下载的)。默认情况下java3d包会安装在你的$\JBuilder9\jdk1.4\目录下。会在$\JBuilder9\jdk1.4\jre\lib\ext\下添加几个jar文件,会在$\JBuilder9\jdk1.4\demo\目录下添加一个java3d目录,里面是例子。如果安装没有问题,打开目录 $\JBuilder9\jdk1.4\demo\java3d\HelloUniverse\下的网页HelloUniverse.html应该可以正常显示。-first install the JRE, install java3d Pack (Java 3D package of documents called java3d- 1_3_1-windows-i586- opengl- sdk.exe can go to Baidu, Google and Beijing University days of the Internet to search the file, then you will have to download). Default under java3d package will be installed in your $ \ JBuilder9 \ jdk1.4 \ directory. The $ \ JBuilder9 \ jdk1.4 \ jre \ lib \ ext \ Add several jar document, the $ \ JBuilder9 \ jdk1.4 \ demo \ directory add a java3d directory, there's example. If you have no problem, open directory $ \ JBuilder9 \ jdk1.4 \ demo \ java3d \ HelloUniverse \ HelloUniverse.html the website should be able to display normal.
Platform: | Size: 560128 | Author: 温厚 | Hits:

[Email ServerXmailsvr

Description: XMail version 0.39是个邮件服务器软件,具有如下功能: 1) SMTP 服务器 2) POP3 服务器 3) Finger 服务器 4) 多域名 5) 用户不需要实际的系统帐号 6) SMTP 中继检查 7) SMTP RBL 映象检查 (rbl.maps.vix.com) 8) SMTP RSS 映象检查 (relays.mail-abuse.org) 9) SMTP 垃圾邮件拒绝 10) 带外部POP帐号的POP3帐号同步器 11) 别名 12) 邮递表 13) 顾客邮件处理 14) 远程管理 15) 客户邮件交换 16) 记录日志 17) 多平台 [系统需求] Linux操作系统 或Windows NT,且ws2_32.dll 已经安装。具有连接到因特网的DNS和网关。为了在Linux下编译,你需要安装gcc和libc或glibc, 为了在Windows下编译,你需要MS Visual C++ (我就是用它来编译的),或其它支持Win32 SDK的编译器。 [编译和配置] 详见英文readme.txt。-err
Platform: | Size: 193536 | Author: 李建 | Hits:

[Consolefirsdk

Description: 一个基于WIN32环境下的SDK示例,可作为入门,参考之用,说明了WIN编程的思路。-an environment based on the Win32 SDK examples, as a first step reference. Note the WIN program ideas.
Platform: | Size: 7168 | Author: 程宏 | Hits:

[OS programWhatColor

Description: win32 sdk 获取屏幕任意位置的颜色RGB十六进制值-win32 sdk access arbitrary screen color RGB hexadecimal value
Platform: | Size: 1024 | Author: wn | Hits:

[Othermyf

Description: 单玉米 多目录 绑定转向 win32 sdk开发-single directory bundled with more corn to the development of win32 sdk
Platform: | Size: 90112 | Author: 莫飞 | Hits:

[Hook apisdkdemo

Description: 这篇则是面向对象技术篇,当然还是老调重提!不过我们是利用面向对象技术实现Windows的SDK开发,对于刚开始学习Win32 SDK的VcKbase的朋友们,你们一定可以在此获益!-This is the object-oriented technology, a chapter of course, the old tune again! But we are using object-oriented technology for Windows SDK development, For just started learning Win32 SDK VcKbase friends, you will be able to benefit from this!
Platform: | Size: 8192 | Author: 康烨 | Hits:

[OtherWin32_Calculator

Description: 用Win32 SDK写的一个简单的计算器-with Win32 SDK to write a simple calculator
Platform: | Size: 7168 | Author: zhy | Hits:

[Windows Developconstcharcharconst

Description: const char *与char * const的区别。C语言对文件读写的支持,FILE指针;文本文件和二进制文件的区别。用文本方式读写文件和以二进制方式读写文件的注意事项。C++对文件读写的支持,ofstream和ifstream的用法。Win32 SDK对文件读写的支持,CreateFile函数、WriteFile函数、ReadFile函数的使用;MFC对文件读写的支持,CFile类和CFileDialog的使用,文件过滤器的设置。win.ini文件和注册表的读写方式及相关知识点。-const char* and char* const distinction. C language of the document to read and write support, FILE pointer text file and binary file distinction. Used to read and write text files and read and write files in binary mode Notes. C++ Of documents to read and write support, ofstream and ifstream usage. Win32 SDK to read and write support for the document, CreateFile function, WriteFile function, ReadFile function to use MFC support reading and writing of the document, CFile Class CFileDialog and the use of paper filter settings. win.ini file and registry read and write methods and related knowledge points.
Platform: | Size: 38912 | Author: cgw | Hits:
« 1 2 3 4 5 67 8 9 10 11 ... 15 »

CodeBus www.codebus.net